home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #10 / Software USA Volume 4.10.iso / mac / Games / X-Files Trivia / X-Files Trivia Challenge / X-Files Trivia Challenge.rsrc / STR#_5000.txt < prev    next >
Text File  |  1996-09-28  |  2KB  |  153 lines

  1. wordDelimiter=put the wordDelimiter into oldDelimiter
  2. set the wordDelimiter to |<character>|
  3.  
  4. set the wordDelimiter to oldDelimiter
  5.  
  6. numberFormat=put the numberFormat into oldFormat
  7. set the numberFormat to |<character>|
  8.  
  9. set the numberFormat to oldFormat
  10.  
  11. multiEffect=set the multiEffect to true
  12. |
  13. set the multiEffect to false
  14.  
  15. lockMessages=set the lockMessages to true
  16. |
  17. set the lockMessages to false
  18.  
  19. lockScreen=set the lockScreen to true
  20. |
  21. set the lockScreen to false
  22.  
  23. lineDelimiter=put the lineDelimiter into oldDelimiter
  24. set the lineDelimiter to |<character>|
  25.  
  26. set the lineDelimiter to oldDelimiter
  27.  
  28. itemDelimiter=put the itemDelimiter into oldDelimiter
  29. set the itemDelimiter to |<character>|
  30.  
  31. set the itemDelimiter to oldDelimiter
  32.  
  33. --
  34.  
  35. repeat with...=repeat with |<variable>| = <value1> to <value2>
  36.  
  37. end repeat
  38.  
  39. repeat while...=repeat while |<logical>|
  40.  
  41. end repeat
  42.  
  43. repeat until...=repeat until |<logical>|
  44.  
  45. end repeat
  46.  
  47. repeat for...=repeat for |<value>| times
  48.  
  49. end repeat
  50.  
  51. repeat forever...=repeat forever
  52. |
  53. end repeat
  54.  
  55. --
  56.  
  57. switch...case...end=switch |<condition>|
  58. case <value1>
  59. -- case 1 statements
  60.  
  61. exit switch
  62. case <value2>
  63. -- case 2 statements
  64.  
  65. exit switch
  66. end switch
  67.  
  68. if...then...else if...else...end=if |<logical1>| then
  69. -- logical 1 true statements
  70.  
  71. else if <logical2> then
  72. -- logical 2 true statements
  73.  
  74. else
  75. -- both false statements
  76.  
  77. end if
  78.  
  79. if...then...else...end=if |<logical>| then
  80. -- true statements
  81.  
  82. else
  83. -- false statements
  84.  
  85. end if
  86.  
  87. if...then...else...=if |<logical>| then
  88. -- true statements
  89.  
  90. else <false_statements>
  91.  
  92. if...then...end=if |<logical>| then
  93. -- true statements
  94.  
  95. end if
  96.  
  97. if...then...=if |<logical>| then <true_statements>
  98.  
  99. --
  100.  
  101. on quitSuperCard...=on quitSuperCard
  102. |
  103. end quitSuperCard
  104.  
  105. on closeProject...=on closeProject
  106. |
  107. end closeProject
  108.  
  109. on closeWindow...=on closeWindow
  110. |
  111. end closeWindow
  112.  
  113. on closeBackground...=on closeBackground
  114. |
  115. end closeBackground
  116.  
  117. on closeCard...=on closeCard
  118. |
  119. end closeCard
  120.  
  121. --
  122.  
  123. on openCard...=on openCard
  124. |
  125. end openCard
  126.  
  127. on openBackground...=on openBackground
  128. |
  129. end openBackground
  130.  
  131. on openWindow...=on openWindow
  132. |
  133. end openWindow
  134.  
  135. on openProject...=on openProject
  136. |
  137. end openProject
  138.  
  139. on startUp=on startUp
  140. |
  141. end startUp
  142.  
  143. --
  144.  
  145. function...=function xxx
  146. |
  147. end xxx
  148.  
  149. on...=on xxx
  150. |
  151. end xxx
  152.  
  153.